home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 2 / ETO Development Tools 2.iso / Essentials / Developer Essentials Nov 90 / Apple II / Apple.II.partition / Tools / DTS.Samples / SC17Darts / Darts.p / UUtils.p < prev    next >
Encoding:
Text File  |  1990-06-25  |  611 b   |  34 lines  |  [TEXT/pdos]

  1. {**********************************************************************
  2. {*
  3. {* Darts uUtils -- Version 3.0  (interface)
  4. {*
  5. {* Copyright (c)
  6. {* Apple Computer, Inc.  1986-1989
  7. {* All Rights Reserved.
  8. {*
  9. {* Developer Technical Support Apple II Sample Code
  10. {*
  11. {* This file contains the interface to the code which implements  
  12. {* various utility routines used by the program.
  13. {*
  14. {**********************************************************************}
  15.  
  16. Unit uUtils;
  17.  
  18. INTERFACE
  19.  
  20. USES
  21.     types,
  22.     locator,
  23.     intMath;
  24.     
  25.  
  26.   
  27. FUNCTION IntToString (i : Integer): STR255;
  28.  
  29. IMPLEMENTATION
  30.  
  31. {$i uUtils.inc.p }
  32.  
  33. END.
  34.